home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Examples / AppKit / Backspace / Makefile.postamble < prev    next >
Encoding:
Makefile  |  1994-06-27  |  677 b   |  21 lines

  1. # Makefile.postamble
  2. # BackSpace has no bundles, but needs symbols left in so it can
  3. # dynamically load the views.  This makes that happen.
  4.  
  5. APP_STRIP_OPTS = $(DYLD_APP_STRIP_OPTS)
  6.  
  7. EXAMPLES_DIR=$(DSTROOT)/NextDeveloper/Examples/AppKit/Backspace
  8.  
  9. # The following target is used at NeXT to ensure that after we install
  10. # the project, we also supply the source code.
  11. after_install::
  12.     if [ "${RC_JASPER}" = "YES" -a ! -f $(EXAMPLES_DIR) ] ; then \
  13.         $(MAKE) installsrc "SRCROOT=$(EXAMPLES_DIR)" ; \
  14.         cd $(EXAMPLES_DIR); \
  15.         $(MAKE) clean; \
  16.         /bin/rm -f $(EXAMPLES_DIR)/SGS_ENV ; \
  17.         /bin/chmod -R go-w $(EXAMPLES_DIR) ; \
  18.         /usr/etc/chown -R root.wheel $(EXAMPLES_DIR) ; \
  19.     fi
  20.  
  21.